home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tcoop.arc / TCOOP2.ARC / GWSOUNIT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-26  |  335 b   |  18 lines

  1. // gwsounit.h: Graphics-based window screen object class
  2.  
  3. #ifndef H_GWSOUNIT
  4. #define H_GWSOUNIT
  5.  
  6. #include "isounit.h"
  7. #include "gfsounit.h"
  8.  
  9. class Wso : public Iso {
  10. public:
  11.   Wso(int Ba, int Fa, ColorPak &Cp);
  12.   virtual void MoveLoop(MsgPkt &M);
  13.   virtual void Prompt(void);
  14.   virtual void UnPrompt(void);
  15. };
  16.  
  17. #endif
  18.